+2008-06-30 Michael Natterer <mitch@imendio.com>
+
+ Some unrelated cleanups found while reviewing
+ the offscreen window patch:
+
+ * gdk/gdkwindow.c: add missing Since: 2.14 to the redirection
+ functions, fix some function header indentation, update
+ documentation of redirect_to_drawable().
+
+ * gdk/x11/gdkwindow-x11.c
+ * gdk/x11/gdkpixmap-x11.c: fix function header
+ formatting/indentation.
+
+ * gtk/gtkwidget.c: use I_() on "damage_event".
+
2008-06-30 Michael Natterer <mitch@imendio.com>
* gdk/gdkinternals.h: remove duplicate declaration of
static void
-remove_redirect_from_children (GdkWindowObject *private, GdkWindowRedirect *redirect)
+remove_redirect_from_children (GdkWindowObject *private,
+ GdkWindowRedirect *redirect)
{
GList *l;
GdkWindowObject *child;
*
* Removes and active redirection started by
* gdk_window_redirect_to_drawable().
+ *
+ * Since: 2.14
**/
void
gdk_window_remove_redirection (GdkWindow *window)
{
GdkWindowObject *private;
-
+
g_return_if_fail (GDK_IS_WINDOW (window));
private = (GdkWindowObject *) window;
}
static void
-apply_redirect_to_children (GdkWindowObject *private, GdkWindowRedirect *redirect)
+apply_redirect_to_children (GdkWindowObject *private,
+ GdkWindowRedirect *redirect)
{
GList *l;
GdkWindowObject *child;
* @width and @height is also drawn into @drawable at
* @dest_x, @dest_y.
*
- * Only drawing between gdk_window_begin_paint_region() and
- * gdk_window_end_paint() is redirected.
+ * Only drawing between gdk_window_begin_paint_region() or
+ * gdk_window_begin_paint_rect() and gdk_window_end_paint() is
+ * redirected.
*
* Redirection is active until gdk_window_remove_redirection()
* is called.
* This function should not be used on windows created by
* gdk_window_new_offscreen(), as that is implemented using
* redirection.
+ *
+ * Since: 2.14.
**/
void
-gdk_window_redirect_to_drawable (GdkWindow *window,
+gdk_window_redirect_to_drawable (GdkWindow *window,
GdkDrawable *drawable,
- gint src_x, gint src_y,
- gint dest_x, gint dest_y,
- gint width, gint height)
+ gint src_x,
+ gint src_y,
+ gint dest_x,
+ gint dest_y,
+ gint width,
+ gint height)
{
GdkWindowObject *private;
}
static void
-reset_redirect_clip (GdkWindow *offscreen, GdkGC *gc, GdkWindowClipData *data)
+reset_redirect_clip (GdkWindow *offscreen,
+ GdkGC *gc,
+ GdkWindowClipData *data)
{
/* offset back */
gdk_gc_offset (gc, data->x_offset, data->y_offset);
} _GdkPixmapInfo;
static void gdk_pixmap_impl_x11_get_size (GdkDrawable *drawable,
- gint *width,
- gint *height);
+ gint *width,
+ gint *height);
static void gdk_pixmap_impl_x11_dispose (GObject *object);
static void gdk_pixmap_impl_x11_finalize (GObject *object);
}
#endif /* HAVE_SHAPE_EXT */
}
+
static void
gdk_window_x11_shape_combine_region (GdkWindow *window,
const GdkRegion *shape_region,
gint offset_x,
gint offset_y)
-{
+{
do_shape_combine_region (window, shape_region, offset_x, offset_y, ShapeBounding);
}
* Since: 2.4
**/
void
-gdk_window_set_keep_above (GdkWindow *window, gboolean setting)
+gdk_window_set_keep_above (GdkWindow *window,
+ gboolean setting)
{
g_return_if_fail (GDK_IS_WINDOW (window));
static void
-gdk_window_set_static_bit_gravity (GdkWindow *window, gboolean on)
+gdk_window_set_static_bit_gravity (GdkWindow *window,
+ gboolean on)
{
XSetWindowAttributes xattributes;
GdkWindowObject *private;
}
static void
-gdk_window_set_static_win_gravity (GdkWindow *window, gboolean on)
+gdk_window_set_static_win_gravity (GdkWindow *window,
+ gboolean on)
{
XSetWindowAttributes xattributes;
* Since: 2.14
*/
widget_signals[DAMAGE_EVENT] =
- g_signal_new ("damage_event",
+ g_signal_new (I_("damage_event"),
G_TYPE_FROM_CLASS (gobject_class),
- G_SIGNAL_RUN_LAST, 0,
+ G_SIGNAL_RUN_LAST,
+ 0,
_gtk_boolean_handled_accumulator, NULL,
_gtk_marshal_BOOLEAN__BOXED,
G_TYPE_BOOLEAN, 1,